home *** CD-ROM | disk | FTP | other *** search
- { strmain.pas -- Main menu- and string-table module }
-
- program StrMain;
-
- uses WinTypes, WinProcs, WObjects, UStr1;
-
- type
-
- StrMainApplication = object(TApplication)
- procedure InitMainWindow; virtual;
- end;
-
-
- { StrMainApplication }
-
- {- Initialize StrMainApplication object's window }
- procedure StrMainApplication.InitMainWindow;
- begin
- MainWindow := New(PStrMainWindow, Init(nil, 'StrMain'))
- end;
-
- var
-
- StrMainApp: StrMainApplication;
-
- begin
- StrMainApp.Init('StrMainApp');
- StrMainApp.Run;
- StrMainApp.Done
- end.
-
-
- {--------------------------------------------------------------
- Copyright (c) 1991 by Tom Swan. All rights reserved.
- Revision 1.00 Date: 4/16/1991
- ---------------------------------------------------------------}
-